home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
c't freeware shareware 1999 February
/
CT_SW9902.ISO
/
mac
/
software
/
wissen
/
daten
/
gnuplot.hqx
/
gnuplot.2.0b4
/
Interapplication
/
C Examples
/
HelloWorld.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-22
|
724b
|
26 lines
/*
* Hello World for the CodeWarrior
* © 1996 Metrowerks Corp.
*
* Questions and comments to:
* support@metrowerks.com
* http://www.metrowerks.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void main(void)
{
printf ("Hello World, this is CodeWarrior!\n\n");
srand(time(NULL));
printf ("This project uses the SIOUX console library: choose 'Quit' from the file menu to quit.\n\n");
printf ("For more information on the ANSI C library and the Metrowerks additions, ");
printf ("including SIOUX, see the C Library Reference in the Metrowerks Documentation folder.\n\n");
printf ("To locate the right ANSI library for your preferences, see the CodeWarrior User's Guide.\n");
}